home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wdj0697.zip / TECHTIPS.ZIP / MAINFRM.H < prev    next >
C/C++ Source or Header  |  1996-06-04  |  988b  |  41 lines

  1. // MainFrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CMainFrame)
  20.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  21.     //}}AFX_VIRTUAL
  22.  
  23. // Implementation
  24. public:
  25.     virtual ~CMainFrame();
  26. #ifdef _DEBUG
  27.     virtual void AssertValid() const;
  28.     virtual void Dump(CDumpContext& dc) const;
  29. #endif
  30.  
  31. // Generated message map functions
  32. protected:
  33.     //{{AFX_MSG(CMainFrame)
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code!
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41.